php function to remove underscore

38

$original = 'lets_go_to_the_beach_today_my_friend';

$replace = str_replace('_', ' ', $original, $count);

echo $count;
str_replace($remove, $replace, $the_string)

Comments

Submit
0 Comments